-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Offline Mode for zingo-mobile #1540
Conversation
@dorianvp can this be tested with Kotlin in zingo-mobile? Or detox? |
|
||
let valid_uri = crate::config::construct_lightwalletd_uri(Some( | ||
crate::config::DEFAULT_LIGHTWALLETD_SERVER.to_string(), | ||
)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really think this test is correct, I see valid_uri
with a valid uri, hehehehe, obviously, and IMO this test needs a different value here, IDK like http::Uri::default()
which for me is a empty
server uri.
) | ||
.unwrap(); | ||
|
||
assert_eq!(valid_config.get_lightwalletd_uri(), valid_uri); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this make no sense to me... in a serverless scenario... in fact the normal situation for serverless
is:
- server uri: empty.
- chain type: empty.
No description provided.